From 43cec77144438e2cd11f7b3348c79d01c25c59e3 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 24 Nov 2020 12:45:40 -0600 Subject: [PATCH] Functional tests are integration tests --- tests/test_exceptions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index 41a55d4..575412c 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -26,21 +26,21 @@ import pgwui_common.exceptions as common_ex # Functional tests -@pytest.mark.unittest +@pytest.mark.integrationtest def test_unknownsettingkeyerror(): '''Takes an argument''' assert isinstance(common_ex.UnknownSettingKeyError('key'), common_ex.Error) -@pytest.mark.unittest +@pytest.mark.integrationtest def test_missingsettingerror(): '''Takes an argument''' assert isinstance(common_ex.MissingSettingError('key'), common_ex.Error) -@pytest.mark.unittest +@pytest.mark.integrationtest def test_notbooleansettingerror(): '''Takes two arguments''' assert isinstance(common_ex.NotBooleanSettingError('key', 'val'), -- 2.34.1